Skip to content

Conversation

pavelkumbrasev
Copy link

No description provided.

void Detect(const cv::Mat& frame, std::vector<cv::Rect>& objects,
std::vector<double>& scores) override;


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TheG1uy, надо удалить неоправданные пустые строки кода.

detector.Detect(img, objects, scores);
if (scores.size() > 0) {
namedWindow("Result");
rectangle(img, objects[0], Scalar(250, 150, 10));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TheG1uy, на изображении может быть много объектов одного класса, поэтому здесь должен быть цикл.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants